home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 July / Chip Temmuz 2004.iso / program / antispam / RazorAgent_SDK / razor-agents-sdk-2.03.exe / URI-1.19 / Changes next >
Encoding:
Text File  |  2002-05-09  |  10.0 KB  |  443 lines

  1. 2002-05-09   Gisle Aas <gisle@ActiveState.com>
  2.  
  3.    Release 1.19
  4.  
  5.    URI::Heuristic will guess better on strings
  6.    like "123.3.3.3:8080/foo".  It used to think that
  7.    the numbers before ":" was a scheme.
  8.  
  9.    URI::WithBase will not keep the full history of
  10.    any base URI's base URI etc.  This used to make
  11.    these objects grow into to monsters for some
  12.    web spiders.
  13.  
  14.    URI::URL->new("foo", "bar")->base used to return
  15.    a "URI" object.  Now an URI::URL object is returned
  16.    instead.
  17.  
  18.    Deal properly with file:///-URIs.
  19.  
  20.  
  21.  
  22. 2001-12-30   Gisle Aas <gisle@ActiveState.com>
  23.  
  24.    Release 1.18
  25.  
  26.    Added support for ssh: URIs.
  27.    Contributed by Jean-Philippe Bouchard <jeanphil@sitepak.com>
  28.  
  29.    URI::Escape: Make sure cache is not set when the RE
  30.    wouldn't compile.  Fix suggested by <me-01@ton.iguana.be>.
  31.    Applied patch as suggested by Randal L. Schwartz.
  32.  
  33.    Don't try to come up with the e-mail address of the user as
  34.    the anonymous password.
  35.    Patch by Eduardo PΘrez <eperez@dei.inf.uc3m.es>.
  36.  
  37.  
  38.  
  39. 2001-09-14   Gisle Aas <gisle@ActiveState.com>
  40.  
  41.    Release 1.17
  42.  
  43.    Fixed unescape of %30 in $http_uri->canonical.
  44.  
  45.    Fixed test failure for t/heuristic.t on cygwin.
  46.  
  47.    Fixed warning noise from t/old-base.t on bleadperl.
  48.    Perl now warns for pack("c*", $i) when $i > 127.
  49.  
  50.  
  51.  
  52. 2001-08-27   Gisle Aas <gisle@ActiveState.com>
  53.  
  54.    Release 1.16
  55.  
  56.    URI::Escape::uri_escape default has changed.  Reserved
  57.    characters are now escaped when no second argument is
  58.    provided.
  59.  
  60.    The perl5.004 backwards compatibility patching taking place
  61.    in the Makefile.PL should now work for MacPerl.
  62.    Patch by KIMURA Takeshi <kim@ga2.so-net.ne.jp>.
  63.  
  64.    URI::WithBase now overrides the can() method and delegate it to
  65.    the URI member.  This also affects the URI::URL behaviour.
  66.    Patch by Sean M. Burke <sburke@cpan.org>.
  67.  
  68.  
  69.  
  70. 2001-07-19   Gisle Aas <gisle@ActiveState.com>
  71.  
  72.    Release 1.15
  73.  
  74.    [This release was made just to document the changes that went
  75.     into the (unreleased) URI-1.13 but never made it into this
  76.     change-log.  There is no functional difference between the 1.14
  77.     and 1.15 release.]
  78.  
  79.  
  80.  
  81. 2001-07-18   Gisle Aas <gisle@ActiveState.com>
  82.  
  83.    Release 1.14
  84.  
  85.    The module failed on perl5.004 because \z is not supported
  86.    in regexps.  The Makefile.PL will now try to patch the module
  87.    to be compatible.
  88.  
  89.  
  90.  
  91. 2001-05-15   Gisle Aas <gisle@ActiveState.com>
  92.  
  93.    Release 1.13 (never made it to CPAN)
  94.  
  95.    URI.pm now conforms to RFC 2732 which specify how literal IPv6
  96.    addresses are to be included in URLs.
  97.  
  98.    URI/Escape now allows "/" in the $unsafe pattern argument.
  99.  
  100.  
  101.  
  102. 2001-04-23   Gisle Aas <gisle@ActiveState.com>
  103.  
  104.    Release 1.12
  105.  
  106.    URI->new($u, $scheme) does no longer fail if given a badly
  107.    formatted scheme string.
  108.  
  109.    URI::WithBase's clone and base method was basically just
  110.    broken.  This also affected the URI::URL subclass.
  111.    The clone() method did not copy the base, and updating
  112.    the base with the base method always set it to "1".
  113.  
  114.  
  115.  
  116. 2001-02-27   Gisle Aas <gisle@ActiveState.com>
  117.  
  118.    Release 1.11
  119.  
  120.    The t/heuristic.t test relied on the fact that 'www.perl.no'
  121.    was not registered in DNS.  This is no longer true.
  122.    The penguins at Bouvet Island will hopefully be ignorant
  123.    of Perl forever.
  124.  
  125.  
  126.  
  127. 2001-01-10   Gisle Aas <gisle@ActiveState.com>
  128.  
  129.    Release 1.10
  130.  
  131.    The $u->query_form method will now escape spaces in
  132.    form keys or values as '+' (instead of '%20').  This also
  133.    affect the $mailto_uri->header() method.  This is actually
  134.    the wrong thing to do, but this practise is now even
  135.    documented in official places like
  136.    http://www.w3.org/TR/html4/interact/forms.html#h-17.13.4.1
  137.    so we might as well follow the stream.
  138.  
  139.    URI::Heuristic did not work for domain-names with dashes '-'
  140.    in them.  Fixed.
  141.  
  142.    Documented that $uri->xxx($1) might not work.
  143.  
  144.  
  145.  
  146. 2000-08-16   Gisle Aas <gisle@ActiveState.com>
  147.  
  148.    Release 1.09
  149.  
  150.    uri_unescape() did not work when given multiple strings
  151.    to decode.  Patch by Nicholas Clark <nick@ccl4.org>.
  152.  
  153.  
  154.  
  155. 2000-08-02   Gisle Aas <gisle@ActiveState.com>
  156.  
  157.    Release 1.08
  158.  
  159.    ldap URIs now support _scope() and _filter() methods that
  160.    don't have default values.  Suggested by Graham Barr.
  161.  
  162.    Incorporated old rejected MSWin32 patch to t/old-base.t.
  163.    Hope it works.
  164.  
  165.  
  166.  
  167. 2000-06-13   Gisle Aas <gisle@ActiveState.com>
  168.  
  169.    Release 1.07
  170.  
  171.    URI::WithBase (and URI::URL) now support $u->new_abs
  172.    constructor.
  173.  
  174.    URI::WithBase->new("foo", "URI::URL") bug fixed.
  175.  
  176.  
  177.  
  178. 2000-04-09   Gisle Aas <gisle@aas.no>
  179.  
  180.    Release 1.06
  181.  
  182.    Clean test/install on VMS.
  183.    Patch by Charles Lane <lane@DUPHY4.Physics.Drexel.Edu>
  184.  
  185.  
  186.  
  187. 2000-02-14   Gisle Aas <gisle@aas.no>
  188.  
  189.    Release 1.05
  190.  
  191.    QNX file support by Norton Allen <allen@huarp.harvard.edu>.
  192.  
  193.    Support for rsync:-URI by Dave Beckett <D.J.Beckett@ukc.ac.uk>
  194.  
  195.  
  196.  
  197. 1999-08-03   Gisle Aas <gisle@aas.no>
  198.  
  199.    Release 1.04
  200.  
  201.    Avoid testing for defined(@ISA) and defined(%class::).  Patch
  202.    by Nathan Torkington <gnat@frii.com>.
  203.  
  204.    $uri->abs() did wrong when the fragment contained a "?"
  205.    character.
  206.  
  207.    Typo in URI::ldap spotted by Graham Barr.
  208.  
  209.  
  210.  
  211. 1999-06-24   Gisle Aas <gisle@aas.no>
  212.  
  213.    Release 1.03
  214.  
  215.    Escape all reserved query characters in the individual components
  216.    of $uri->query_form and $uri->query_keywords.
  217.  
  218.    Make compatibility URI::URL->new("mailto:gisle@aas.no")->netloc
  219.    work again.
  220.  
  221.  
  222.  
  223. 1999-03-26   Gisle Aas <gisle@aas.no>
  224.  
  225.    Release 1.02
  226.  
  227.    Added URI::ldap.  Contributed by Graham Barr <gbarr@pobox.com>.
  228.  
  229.    Documentation update.
  230.  
  231.  
  232.  
  233. 1999-03-20   Gisle Aas <gisle@aas.no>
  234.  
  235.    Release 1.01
  236.  
  237.    MacOS patches from Paul J. Schinder <schinder@leprss.gsfc.nasa.gov>
  238.  
  239.    Documentation patch from Michael A. Chase <mchase@ix.netcom.com>
  240.  
  241.  
  242.  
  243. 1998-11-19   Gisle Aas <aas@sn.no>
  244.  
  245.    Release 1.00
  246.  
  247.    Added new URI->new_abs method
  248.  
  249.    Replaced a few die calls with croak.
  250.  
  251.  
  252.  
  253. 1998-10-12   Gisle Aas <aas@sn.no>
  254.  
  255.    Release 0.90_02
  256.  
  257.    Implemented new $uri->host_port method.
  258.  
  259.    $uri->epath and $uri->equery aliases to make URI::URL
  260.    compatibility easier.
  261.  
  262.  
  263.  
  264. 1998-09-23   Gisle Aas <aas@sn.no>
  265.  
  266.    Release 0.90_01
  267.  
  268.    New README
  269.  
  270.    Makefile.PL list MIME::Base64 as PREREQ_PM
  271.  
  272.    Original $scheme argument not passed to _init() method.
  273.  
  274.    Automatically add scheme to empty URIs where the scheme
  275.    is required:  URI->new("", "data")
  276.  
  277.    Documentation update.
  278.  
  279.    New URI::URL::strict implementation.
  280.  
  281.  
  282.  
  283. 1998-09-22   Gisle Aas <aas@sn.no>
  284.  
  285.    Release 0.09_02
  286.  
  287.    New internal URI::file::* interface.  Implemented 8.3 mapping
  288.    for "dos".
  289.  
  290.    Got rid of $URI::STRICT and $URI::DEFAULT_SCHEME
  291.  
  292.    More documentation.
  293.  
  294.  
  295.  
  296. 1998-09-13   Gisle Aas <aas@sn.no>
  297.  
  298.    Release 0.09_01
  299.  
  300.    Use version number with underscore to avoid that the CPAN
  301.    indexer hides the URI::URL from libwww-perl that contains
  302.    all the documentation.
  303.  
  304.    Started to document the new modules.
  305.  
  306.    URI::file->new() escape fix which allow Mac file names like
  307.    ::.. to be treated as they should (I think).
  308.  
  309.  
  310.  
  311. 1998-09-12   Gisle Aas <aas@sn.no>
  312.  
  313.    Release 0.09
  314.  
  315.    Included URI::Escape and URI::Heuristic from LWP.  URI::Escape
  316.    updated with new default set of characters to escape (according
  317.    to RFC 2396) and a faster uri_unescape() function.  URI::Heuristic
  318.    with new funtion that returns an URI object.
  319.  
  320.    First argument to URI->new is always treated as a string now.
  321.  
  322.    URI->new("", URI::WithBase("foo:")) now works.  It returns an
  323.    URI::WithBase object.
  324.  
  325.    Included Roy T. Fielding's URI parsing/abs tests from
  326.    <http://www.ics.uci.edu/~fielding/url/>.  We did in fact agree
  327.    with RFC 2396 on all tests.
  328.  
  329.    Allow authority "A|" in Win32 file:-URIs to denote A:.  Treat
  330.    escaped chars.
  331.  
  332.  
  333.  
  334. 1998-09-10   Gisle Aas <aas@sn.no>
  335.  
  336.    Release 0.08
  337.  
  338.    Implemented transformations between various file: URIs and
  339.    actual file names.  New URI::file methods:
  340.  
  341.        new
  342.        new_abs
  343.        cwd
  344.        file
  345.        dir
  346.  
  347.  
  348.  
  349. 1998-09-09   Gisle Aas <aas@sn.no>
  350.  
  351.    Release 0.07
  352.  
  353.    Implemented rlogin, telnet and file URLs.
  354.  
  355.    Implemented URI::WithBase
  356.  
  357.    Implemented URI::URL emulator (ported old URI::URL test suite)
  358.  
  359.    Can now use schemes with "-", "+" or "." characters in them.
  360.  
  361.    $u->scheme will downcase.  $u->_scheme will keep it as it is.
  362.  
  363.    Configuration variables for $u->abs
  364.  
  365.    $u->query_form and $u->query_keyword is more careful about escaping
  366.    "+" and "=".
  367.  
  368.    $u->host unescaped
  369.  
  370.    $u->_port if you want to bypass $u->default_port
  371.  
  372.    Can handle news message-ids with embedded "/" now
  373.  
  374.  
  375.  
  376. 1998-09-08   Gisle Aas <aas@sn.no>
  377.  
  378.    Release 0.06
  379.  
  380.    Implemented gopher URLs
  381.  
  382.    Implemented ftp URLs
  383.  
  384.    Second ctor argument can be a plain scheme name.  If it is an
  385.    object, then we use the class of the object as implementor.
  386.  
  387.    Protect literal % in various places by escaping
  388.  
  389.    Path segments with parameters is not arrays of class URI::_segment,
  390.    which overload stingify operator.
  391.  
  392.    URI::http->canonical will now unescape unreserved characters.
  393.  
  394.  
  395.  
  396. 1998-09-08   Gisle Aas <aas@sn.no>
  397.  
  398.    Release 0.05
  399.  
  400.    Implemented news URLs (together with snews/nntp)
  401.  
  402.    Implemented pop URLs (RFC 2384)
  403.  
  404.    Can now use '==' to compare if two URI objects are the same or not.
  405.  
  406.    $u->opaque_part renamed as $u->opaque
  407.  
  408.    Better canonicalization
  409.  
  410.    Faster $u->abs (especially for URI that already are absolute)
  411.  
  412.    $u->query_form will keep more chars unescaped
  413.  
  414.  
  415.  
  416. 1998-09-06   Gisle Aas <aas@sn.no>
  417.  
  418.    Release 0.04
  419.  
  420.    Implemented mailto:-URLs (specified in RFC 2368)
  421.  
  422.    Moved query() methods to internal URI::_query mixin class.
  423.  
  424.    Escape stuff in the media_type field of data:-URLs.
  425.  
  426.  
  427.  
  428. 1998-09-06   Gisle Aas <aas@sn.no>
  429.  
  430.    Release 0.03 based on simplified scalar object.
  431.  
  432.  
  433.  
  434. 1998-09-02   Gisle Aas <aas@sn.no>
  435.  
  436.    Release 0.02 based on perl5.005 and fields.pm
  437.  
  438.  
  439.  
  440. 1998-04-10   Gisle Aas <aas@sn.no>
  441.  
  442.    Release 0.01
  443.